home *** CD-ROM | disk | FTP | other *** search
/ Language/OS - Multiplatform Resource Library / LANGUAGE OS.iso / oper_sys / choices / chcssml1.lha / Debug.c < prev    next >
C/C++ Source or Header  |  1989-02-06  |  1KB  |  35 lines

  1. /*
  2.  * This file is part of the Choices Operating System Simulator
  3.  * Developed by: The TAPESTRY Parallel Computing Laboratory
  4.  *         University of Illinois at Urbana-Champaign
  5.  *         Department of Computer Science
  6.  *         1304 W. Springfield Ave.
  7.  *         Urbana, IL    61801
  8.  *
  9.  * Copyright (c) 1987, 1988, 1989 The University of Illinois Board of Trustees.
  10.  *    All Rights Reserved.
  11.  * CONFIDENTIAL INFORMATION. Distribution restricted under license agreement.
  12.  *
  13.  * Author: Gary M. Johnston (johnston@cs.uiuc.edu)
  14.  * Project Manager and Principal Investigator: Roy Campbell (roy@cs.uiuc.edu)
  15.  *
  16.  * Funded by: NSF TAPESTRY Grant No. 1-5-30035, NASA ICLASS Grant 
  17.  *   No. 1-5-25469 and No. NSG1471 and AT&T Metronet Grant No. 1-5-37411.
  18.  */
  19. /*
  20.  *    $Header: Debug.c,v 1.1 88/02/12 18:19:39 johnston Exp $
  21.  *    $Locker: johnston $
  22.  */
  23.  
  24. #include <stdio.h>
  25. #include <varargs.h>
  26. #include "Debug.h"
  27.  
  28. extern void _doprnt(const char * format, char * argp, FILE * file);
  29.  
  30. void
  31. _debug(const char * format, ...)
  32. {
  33.     _doprnt(format, (char *) (&format + 1), stderr);
  34. }
  35.